home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-06-15 | 711 b | 34 lines | [TEXT/CWIE] |
- // Sprocket Framework header file
- // EmptyWindow.h
-
-
- #ifndef _EMPTYWINDOW_
- #define _EMPTYWINDOW_
-
- #ifndef _WINDOW_
- #include "Window.h"
- #endif
-
-
- class TEmptyWindow : public TWindow
- {
- // Right now, this class just overrides the absolute bare essentials.
- // Examine TWindow.h to explore all the possible default functionality of a TWindow
- // that can be overriden. Its quite extensive!
-
- public:
- TEmptyWindow();
- virtual ~TEmptyWindow();
-
- virtual WindowRef MakeNewWindow( WindowRef behindWindow );
-
- virtual void Draw(void);
-
- virtual void Activate( Boolean activating );
-
- virtual Boolean DoCommand(CommandID theCommand);
- virtual void AdjustMenusBeforeMenuSelection(void);
- };
-
- #endif
-